home *** CD-ROM | disk | FTP | other *** search
/ Gamers Delight 2 / Gamers Delight 2.iso / Aminet / game / role / adms1_1.lha / Kroz / Kroz.travel < prev   
Text File  |  1994-04-18  |  887b  |  43 lines

  1. ;
  2. ; Travel for Kroz I by Adam Dawes.
  3. ;
  4.  
  5. room = bedroom
  6.     dir = north
  7.         a = has bedroomdoor open
  8.         if a = false
  9.             eprint "The door is closed.^"
  10.         endif
  11.         move bedroomdoor hallway        ; the door comes with us! :)
  12.         hallway
  13.  
  14. room = hallway
  15.     dir = south
  16.         a = has bedroomdoor open
  17.         if a = false
  18.             eprint "The door is closed.^"
  19.         endif
  20.         move bedroomdoor bedroom        ; here, boy!
  21.         bedroom
  22.     dir = west
  23.         bathroom
  24.     dir = down
  25.         settimer 0 .intovortex 3        ; sucked into vortex in 3 turns time
  26.         kitchen
  27.  
  28. room = bathroom
  29.     dir = east
  30.         hallway
  31.  
  32. room = kitchen
  33.     dir = south
  34.         cleartimer 0                        ; no longer sucked into vortex
  35.         print "You step into the vortex. Everything suddenly goes black! \
  36.             You seem to fall through thin air for a very long time, before \
  37.             landing heavily on damp ground. You slowly come to your senses \
  38.             and look around..^^"
  39.         ropebridge
  40.     dir = up
  41.         cleartimer 0
  42.         hallway
  43.